home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / repair / backup.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  567b  |  22 lines

  1. /* Copyright (C) 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    backup.h -- repair backup method declaration. */
  5.  
  6. #ifndef REPAIR_BACKUP_H
  7. #define REPAIR_BACKUP_H
  8.  
  9. #include <repair/repair.h>
  10.  
  11. extern errno_t repair_backup_pack(reiser4_fs_t *fs, 
  12.                   aal_stream_t *stream);
  13.  
  14. extern errno_t repair_backup_unpack(reiser4_fs_t *fs, 
  15.                     aal_stream_t *stream);
  16.  
  17. extern reiser4_backup_t *repair_backup_open(reiser4_fs_t *fs, 
  18.                         uint8_t mode);
  19.  
  20. extern reiser4_backup_t *repair_backup_reopen(reiser4_fs_t *fs);
  21. #endif
  22.